Skip to main content
Version: 1.0.2

Update Account Status

'UpdateAccountStatus' API enables to change the status of an account

Bank or financial institution can update account status with any one of the valid statuses depending on the requirement. On providing account number and the required status to be updated as request, the account status is updated.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to update account status through account service

Constant value: "AccountService.UpdateAccountStatus"

id

Mandatory

String

Unique ID of API request

Sample value: "1"

params

Mandatory

Object

api

Mandatory

Object

signature

Mandatory

String

Signature for request validation

Sample value: "signature"

keyId

Mandatory

String

API key used for request authentication

Sample value: "ApplicationKeyId"

credential

Mandatory

String

API credential provided by NetXD

Sample value: "credential"

payload

Mandatory

Object

accountNumber

Mandatory

String

Account number for which the status to be updated

Sample value – "200238325468489"

status

Mandatory

Enum

Status that is to be updated for the account

Valid values:

  • CREATED - Account has been newly created
  • ACTIVE - Account is currently active and can be used for transactions
  • CURTAILED - Account functionalities are limited
  • DORMANT - Account is inactive for a specific period
  • SUSPENDED - Account is Temporarily disabled
  • BLOCKED - Account is restricted from performing any transactions
  • CLOSED - Account is permanently terminated and can no longer be used
  • DISABLED - Account is inactive and unusable, either temporarily or permanently

Sample value – "DORMANT"


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"AccountService.UpdateAccountStatus","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{credential}}"},"payload":{"accountNumber":"200238325468489","Status":"DORMANT"}}}'

Body


{
"method": "AccountService.UpdateAccountStatus",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{credential}}"
},
"payload": {
"accountNumber": "200238325468489",
"Status": "DORMANT"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value – "1"

result

Object

CustomerId

String

Unique ID of the customer associated with the account

Sample value – "100000000001002"

AccountNumber

String

Account number for which the status is updated

Sample value – "200238325468489"

InstitutionId

String

Routing number of the bank or financial institution associated with the account

Sample value – "101115315"

Name

String

Name of the account

Sample value – "General Account"

Status

Enum

Updated status of the account

Valid values:

  • CREATED - Account has been newly created
  • ACTIVE - Account is currently active and can be used for transactions
  • CURTAILED - Account functionalities are limited
  • DORMANT - Account is inactive for a specific period
  • SUSPENDED - Account is Temporarily disabled
  • BLOCKED - Account is restricted from performing any transactions
  • CLOSED - Account is permanently terminated and can no longer be used
  • DISABLED - Account is inactive and unusable, either temporarily or permanently

Sample value – "DORMANT"


{
"id": "1",
"result": {
"CustomerId": "100000000001002",
"AccountNumber": "200238325468489",
"InstitutionId": "101115315",
"Name": "General Account",
"Status": "DORMANT"
}
}